go/types.Checker.collectParams (method)

4 uses

	go/types (current package)
		signature.go#L180: 	recvList, _ := check.collectParams(scope, recvPar, false)
		signature.go#L181: 	params, variadic := check.collectParams(scope, ftyp.Params, true)
		signature.go#L182: 	results, _ := check.collectParams(scope, ftyp.Results, false)
		signature.go#L276: func (check *Checker) collectParams(scope *Scope, list *ast.FieldList, variadicOk bool) (params []*Var, variadic bool) {